@charset "utf-8";


body{
    overflow-x: hidden;
}
.fixed_right_bottom_btn{
    position: fixed;
    z-index: 998;
    bottom: 10%;
    right:6%;
}

.fixed_right_bottom_btn .btn_hover{
    position: absolute;
    right: 50px;
    top: 0;
    background:rgba(255,255,255,.8);
    border-radius:5px;
    width: 0;
    height: 50px;
    box-shadow: 0 3px 15px rgba(0,0,0,.1);
    justify-content:space-between;
    align-items: center;
    padding: 0;
    transition:all .3s;
}
.fixed_right_bottom_btn .btn_wrap:hover .btn_hover{
    width: 155px;
    padding: 0 20px;
}
.fixed_right_bottom_btn .btn_wrap .btn_hover .item:hover{
    opacity: .7;
}
.fixed_right_bottom_btn .btn_hover .item{
    
}
.fixed_right_bottom_btn .btn_hover .item img{
    width: 30px;
    height: 30px;
}
.fixed_right_bottom_btn .btn{
    background-image: url('../images/entry-style11.png');
    background-repeat: no-repeat;
    width: 22px;
    height: 22px;
    background-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: 6px;
}
.fixed_right_bottom_btn .btn_txt{
    position: absolute;
    left:50%;
    transform: translateX(-50%);
    top: 28px;
    color:#fff;
}
.fixed_right_bottom_btn .btn_wrap{
    position: relative;
    width: 52px;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    border-radius: 50%;
    cursor: pointer;
    background: var(--theme-color);
    transition: transform .1s ease-out, background .2s;
}
.fixed_right_bottom_btn .btn_wrap:after{
    top: 0;
    left: 0;
    padding: 0;
    z-index: -1;
    box-shadow: 0 0 0 2px var(--theme-color);
    opacity: 0;
    transform: scale(.9);
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    content: "";
    box-sizing: content-box;
    -webkit-animation: jyScale 1.3s ease-out 75ms infinite;
    animation: jyScale 1.3s ease-out 75ms infinite;
}
@keyframes jyScale{
    0% {
        opacity: .3;
    }
    40% {
        opacity: .5;
        box-shadow: 0 0 0 2px var(--theme-color), 0 0 10px 10px var(--theme-color), 0 0 0 10px var(--theme-color);
    }
    100% {
        box-shadow: 0 0 0 2px var(--theme-color), 0 0 10px 10px var(--theme-color), 0 0 0 10px var(--theme-color);
        transform: scale(1.5);
        opacity: 0;
    }
}

.product_online_inquiry{
    padding: 50px;
}
.product_online_inquiry_tit{
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    color:#333;
    margin-bottom: 30px;
}
.product_online_inquiry .input_box{
    display: flex;
    margin: 0 -15px 20px;
}
.product_online_inquiry .input{
    width:50%;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
}
.product_online_inquiry .input span{
    font-size: 16px;
    display: block;
    margin-bottom: 6px;
    color:#333;
}
.product_online_inquiry .input span em{
    color:red;
    margin-right: 6px;
}
.product_online_inquiry .input input,.product_online_inquiry .input textarea,.product_online_inquiry .input select{
    width: 100%;
    height: 50px;
    background:rgba(204, 204, 204, 0.25);
    border: none;
    outline: none;
    font-size: 14px;
    padding: 0 20px;
}
.product_online_inquiry .input_box .input input::placeholder{
    color:#999;
}
.product_online_inquiry .input_content{
    padding: 0;
    width: 100%;
}
.product_online_inquiry .input_content textarea{
    width: 100%;
    height: 100px;
    padding: 10px 20px;
}
.product_online_inquiry .btn_1{
    background: var(--theme-color);
    height: 50px;
    width: 100%;
    line-height: 50px;
    color:#fff;
    font-size: 16px;
    text-align: center;
    outline: none;
    border: none;
    transition:all .5s;
    margin-top: 20px;
}
.product_online_inquiry .btn_1:hover{
    opacity: .8;
}


/* page_jobs */

.page_jobs{
}

.page_jobs li.item{
    margin-top: 10px;
}
.page_jobs .item .tit{
    display: flex;
    font-size:15px;
    color:#fff;
    font-weight: bold;
    height: 60px;
    line-height: 60px;
    background: #999;
    overflow: hidden;
}
.page_jobs li.item .tit{
    font-weight: normal;
    background: #f3f3f3;
    cursor: pointer;
    color:#000;
    transition:all .3s;
}
.page_jobs li.item .tit:hover,.page_jobs li.item .tit_cur{
    background:#0068e8;
    color:#fff;
}
.page_jobs .item .tit span{
    display: block;
    width: 31%;
    text-align: center;
}
.page_jobs li.item .tit .btns{
    display: flex;
    justify-content: center;
    width: 8%;
}
.page_jobs li.item .tit .btns:after{
    content:'-';
    font-size:20px;
    font-weight: normal;
}
.page_jobs li.item .tit_cur .btns:after{
    content:'+';
}
.page_jobs li.item .con{
    padding:20px 20px 15px;
    font-size:16px;
}
.page_jobs li.item .con ul{
    display: flex;
    padding: 30px 0;
}
.page_jobs li.item .con ul li{
    flex:1;
    padding:30px;
}
.page_jobs li.item .con ul li h4{
    font-size:18px;
    color:#000;
    margin-bottom: 20px;
}
.page_jobs li.item .con ul li p{
    font-size:14px;
    color:#333;
    line-height: 2;
}
.page_jobs li.item .con ul li a{
    font-size: 14px;
    color: #fff;
    background-color: #154a9a;
    display: inline-block;
    font-weight: 700;
    margin-top: 30px;
    margin-top: 3vw;
    line-height: 2.4;
    padding: 0 20px;
}

.page_jobs .desc{
    background: #0068e8;
    padding: 40px;
    margin-top: 30px;
}
.page_jobs .desc h4{
    font-size:20px;
    font-weight: bold;
    color:#fff;
    margin-bottom: 20px;
}
.page_jobs .desc p{
    font-size:16px;
    line-height: 2.2;
    color:#fff;
}
.page_jobs .desc span{
    display: block;
    font-size:16px;
    margin-top: 20px;
    background: #fff;
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    color:#333;
}
.page_jobs .desc a{
    background: #fff;
    color:var(--theme-color);
    padding: 0 10px;
    margin:0 5px;
}
.page_jobs .desc span a:hover{
    background: #f55c5c;
}


#header{
	width: 100%;
	z-index: 99999;
	position: fixed;
	left: 0;
	top: 0;
	background: #fff;
}
.header_wrap {
	transition:all .3s;
}
.header_flex{
    height:80px;
    align-items: center;
    transition:all .3s;
    justify-content: space-between;
}
.logo a{
	position: relative;
	display: flex;
	align-items: center;
}
.logo{
    flex:1;
}
.logo img {
	height:51px;
	transition:all .3s;
}
.nav_pc{
    transition:all .9s;
}
.nav_pc ul{
    
}
.nav_pc li {
	position: relative;
}

.nav_pc li>a h4{
	display: block;
	font-size: 16px;
	text-transform: uppercase;
	position: relative;
	line-height:80px;
	color: #333;
	text-align: center;
	margin: 0 25px;
	z-index: 5;
	transition:all .3s;
	font-weight: normal;
}
.nav_pc li.cur>a h4:after{
    content:'';
    display: block;
    width: 100%;
    height: 2px;
    background: var(--theme-color);
    position: absolute;
    left: 0;
    bottom: 0;
}
.nav_pc li>a h4 i{
    font-size:18px;
    position: absolute;
    right: -20px;
    top: 0;
    display: none;
}
.nav_pc li.on>a h4 i{
    display: block;
}

.nav_pc li.cur>a h4,.nav_pc li a:hover h4{
    color:var(--theme-color);
}
.nav_pc li.on>a:hover h4 i{
    transform: rotate(180deg);
    transition:all .3s;
}
.nav_pc li .sub_nav{
	position: absolute;
	left: 0;
	width: 100%;
	background:#fff;
	transition: all 0.1s;
	top:50px;
	opacity: 0;
	visibility: hidden;
	z-index: 3;
}
.nav_pc li:hover .sub_nav{
	top:80px;
	opacity: 1;
	visibility: visible;
}
.nav_pc li .sub_nav .child{
    position: relative;
    transition:all .2s;
}
.nav_pc li:nth-child(3) .sub_nav .child>a{
    padding-right: 0;
}
.nav_pc li .sub_nav .child i{
    visibility: hidden;
    transition:all .5s;
    padding-left: 5px;
    opacity: 0;
    display: none;
}
.nav_pc li:nth-child(3) .sub_nav .child i{
    display: inline-block;
}
.nav_pc li .sub_nav .child .child1{
    position: absolute;
    left:105%;
    top: 0;
    width:260px;
    background: #fff;
    visibility: hidden;
    transition:all .3s;
    border-left: 2px solid #eee;
    z-index: 10000;
    opacity: 0;
    
}
.nav_pc li .sub_nav .child .child1 a{
    text-align: left;
    padding:12px 30px;
}
.nav_pc li:nth-child(3) .sub_nav .child:hover i{
    visibility: visible;
    opacity: 1;
}
.nav_pc li .sub_nav .child:hover{
    padding-right: 10px;
}
.nav_pc li .sub_nav .child:hover .child1{
    opacity: 1; 
    left: 100%;
    visibility: visible;
}
.nav_pc li .sub_nav a {
	display: block;
	text-align: center;
	color: #666;
	font-size: 14px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding: 12px 20px;
	border-bottom: 1px solid rgba(0,0,0,.05);
}

/*.nav_pc li:nth-child(2) .sub_nav{*/
/*    width:500px;*/
/*    display: flex;*/
/*    padding:0 5px;*/
/*}*/
/*.nav_pc li:nth-child(2) .sub_nav .child>a{*/
/*    font-weight: bold;*/
/*    color:var(--theme-color);*/
/*}*/
/*.nav_pc li:nth-child(2) .sub_nav .child{*/
/*    flex:1;*/
/*    padding:0 5px;*/
/*}*/

.nav_pc li .sub_nav a:hover {
	color:var(--theme-color);
	font-weight: bold;
}
.header_flex .tel{
    font-size:20px;
    color:var(--theme-color);
    height:41px;
    line-height: 41px;
    padding: 0 25px;
    display: flex;
    align-items: center;
}
.header_flex .tel span{
    font-size:16px;
}
.header_flex .tel i{
    margin-right: 10px;
    font-size:20px;
}
.header_flex .tel p em{
    font-size:16px;
    font-style: normal;
}
.header_flex .search{
    margin-left: 20px;
    cursor: pointer;
    position: relative;
}
.header_flex .search .key{
    width: 200px;
    height: 40px;
    outline: none;
    background: transparent;
    border:1px solid rgba(0,56,141,.4);
    font-size:14px;
    padding:0 30px 0 10px;
    color:#666;
}
.header_flex .search .key::placeholder{
    color:rgba(0,0,0,.5);
}
.header_flex .search button{
    position: absolute;
    right: 6px;
    top: 3px;
    background: transparent;
    border:none;
}
.header_flex .search i{
    font-size:20px;
    color:var(--theme-color);
}
#header.header_on{
    display: block;
    box-shadow: 0 3px 10px rgba(0,0,0,.1);
    border: none;
}

.header_on .header_flex{
    height: 60px;
}
.header_on .header_flex .logo a{
    height: 60px;
}
.header_on .header_flex .logo img{
    height: 40px;
}
.header_on .header_flex .nav_pc li>a h4{
    font-size:16px;
    line-height: 60px;
}

.header_on .header_flex .nav_pc li:hover .sub_nav{
    top: 60px;
}
.header_on .header_flex .tel{
    height: 40px;
    border-width: 1px;
    line-height: 38px;
}
.header_on .header_flex .tel p i{
    font-size:20px;
}
.header_on .header_flex .tel p em{
    font-size:14px;
}
.header_on .nav_pc li.on>a:hover h4 i{
    
}
.phone_top_nav {
	display: none;
}

.phone_top_nav .sub_nav_phone {
	padding: 10px 0;
	border-bottom: 1px solid #eee;
}

.phone_top_nav .sub_nav_phone a {
	display: inline-block;
	font-size: 14px;
	margin-right: 20px;
	color: #333;
}
.phone_menu_btn {
	font-size: 16px;
	color: #000;
	padding-top: 18px;
	display: none;
	cursor: pointer;
}

.phone_menu_btn .line {
	position: relative;
	display: block;
	width: 19px;
	height: 2px;
	margin: 4px 0;
	background: var(--theme-color);
	-webkit-transition: .3s;
	transition: .3s;
}
.phone_menu_btn span {
	position: absolute;
	left: 32px;
	top: 2px;
}

.phone_top_nav {
	position: fixed;
	width: 100%;
	z-index: 9999;
	background: #fff;
	height: 100%;
	border-top: 1px solid #ccc;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow-y: scroll;
	padding: 60px 30px 30px;
	transition: .5s;
	transform: translateY(-100%);
}

.phone_top_nav li>a {
	display: block;
	line-height: 50px;
	font-size: 16px;
	color: #5a5657;
	border-bottom: 1px solid #eee;
	font-weight: bold;
}

.phone_top_nav .sub_nav {
	padding: 10px 0;
	border-bottom: 1px solid #eee;
}

.phone_top_nav .sub_nav a {
	display: inline-block;
	font-size: 14px;
	margin-right: 10px;
	color: #333;
}

.header_active .line:nth-of-type(1) {
	-webkit-transform: translateY(5.5px) rotate(-45deg);
	-ms-transform: translateY(5.5px) rotate(-45deg);
	transform: translateY(5.5px) rotate(-45deg);
}

.header_active .line:nth-of-type(2) {
	opacity: 0;
}

.header_active .line:nth-of-type(3) {
	-webkit-transform: translateY(-6.5px) rotate(45deg);
	-ms-transform: translateY(-6.5px) rotate(45deg);
	transform: translateY(-6.5px) rotate(45deg);
}

.header_active .phone_top_nav {
	transform: translateY(0);
}


/* phone_fixed_menu */

.phone_fixed_menu {
	border-top: 1px solid #E5E9F2;
	width: 100%;
	height: 55px;
	background: #fff;
	position: fixed;
	z-index: 10000;
	bottom: 0;
	left: 0;
	display: none;
}

.phone_fixed_menu ul li {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	height: 55px;
	line-height: 1.2;
}

.phone_fixed_menu ul li a {
	display: block;
}

.phone_fixed_menu ul li i {
	font-size: 20px;
	color: #333;
}

.phone_fixed_menu ul li p {
	color: #333;
	font-size: 14px;
}


/* page_history-thumbs */

.page_history-thumbs{
    position: relative;
    padding: 50px 0;
    height:1000px;
    overflow: hidden;
}
.page_history-thumbs:after{
    width: 1px;
    height: 100%;
    background: #dbdbdb;
    display: block;
    content:'';
    position: absolute;
    top:6px;
    left: 40px;
}
.page_history-thumbs .swiper-button-white{
    width:27px;
    height: 44px;
    background: #ebf2ff;
    margin-top: -102px;
    outline: none;
}
.page_history-thumbs .swiper-button-prev{
    left: 0;
}
.page_history-thumbs .swiper-button-next{
    right: 0;
}
.page_history-thumbs .swiper-button-white:after{
    color:#4b4e5d;
    font-size:18px;
}
.page_history-thumbs .swiper-slide{
    text-align: center;
    cursor: pointer;
}
.page_history-thumbs .round{
    width: 9px;
    height: 9px;
    background:var(--theme-color);
    border-radius: 50%;
    margin:auto;
    position: absolute;
    left:200px;
    top: 65px;
}
.page_history-thumbs .round:before{
    width:60px;
    height:1px;
    background:var(--theme-color);
    content:'';
    display: block;
    position: absolute;
    left: -60px;
    top:4px;
}
.page_history-thumbs p{
    font-size:16px;
    color:#fff;
    margin-top:46px;
    font-weight: normal;
    font-family: Arial;
    position: absolute;
    background: var(--theme-color);
    display: inline-block;
    left: 0;
    top: 0;
    width: 116px;
    height: 46px;
    text-align: center;
    line-height: 46px;
    border-radius: 5px;
}
.page_history-thumbs p span{
    font-family: 'PingFang SC';
    margin-left: 6px;
}
.page_history-thumbs h4{
    font-size:16px;
    background: #fff;
    color: #666;
    padding: 20px;
    font-weight: 400;
    line-height: 1.4;
    width: calc(100% - 200px);
    margin: 20px 0 0 200px;
    min-height: 100px;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
}
.page_history-thumbs h4 span{
    font-size:18px;
    color:#333;
    display: block;
    margin-bottom:10px;
}
.page_history-thumbs .swiper-slide-thumb-active .round{
   background: #2f67c7;
}
.page_history-thumbs .swiper-slide-thumb-active .round:before{
    background: #2f67c7;
}
.page_history-thumbs .swiper-slide-thumb-active p{
    color:#2f67c7;
}
.page_history-top{
    padding-top:60px;
}
.page_history-top .top_flex{
    max-width: 70%;
    margin:auto;
}
.page_history-top .img img{
    margin:auto;
}
.page_history-top .con{
    background: #3c71dc;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 0 50px;
    color:#fff;
}
.page_history-top .con p{
    font-size:20px;
    line-height: 1.3;
    margin-bottom: 10px;
}
.page_history-top .con h4{
    font-size:16px;
    font-weight: 300;
}

.page_history-thumbs .swiper-slide:hover h4 span{
    color:#fff;
}

/* banner */

.mb_banner{
    display: none!important;
}
#banner{
     position: relative;   
}
#banner .parallax:after{
	background: url(../images/pat1.png) repeat;
	content:'';
	width: 100%;
	height: 100%;
	top:0;
	left:0;
	position: absolute;
	opacity: 0.5;
}
#banner .caption h4{
    font-size:48px;
    color:#fff;
    font-weight: bold;
    margin-bottom: 15px;
}
#banner .caption p{
    font-size:20px;
    font-weight: 300;
    color:#fff;
    line-height: 30px;
    text-transform: uppercase;
}
#banner .caption p:after{
    content:'';
    display: block;
    width: 68px;
    height: 8px;
    background: #fff;
    margin:30px auto 0;
}
#banner .caption a i{
    font-size:22px;
    color:#3f95ea;
    line-height: 1;
}
#banner .caption a:hover{
    background: #3f95ea;
}
#banner .caption a:hover i{
    color:#fff;
}

#slides {
    position: relative;
}

#slides .slides-container div{
	background-position:center top;
	background-attachment: fixed;
}
#slides .slides-navigation .next, #slides .slides-navigation .prev {
    position: absolute;
    top: 50%;
    z-index: 100;
}
#slides .slides-navigation .next {
	right: 10px;
}
#slides .slides-navigation .prev {
	left: 10px;
}
#slides .slides-navigation i {
    color: #fff; 
    font-size: 40px;
    line-height: 40px;
    margin-top: -30px; 
    opacity: 0.5; 
}
#slides .slides-navigation i:hover {
	opacity: 1;
}
.slides-pagination {
    position: absolute;
    z-index: 3;
    bottom: 12px;
    text-align: center;
    width: 100%;
}
.slides-pagination a{
    border: 2px solid #fff;
    border-radius: 15px;
    width: 15px;
    height: 15px;
    display: inline-block;
    vertical-align: middle;
    margin: 3px;
    overflow: hidden;
    color: transparent !important;
}
.slides-pagination a.current {
    background: #fff;
}

#slides .caption {
    position: absolute; 
    z-index: 1000;
    display: flex;
    justify-content: center;
    height: 100%;
    flex-direction: column;
    align-content: center;
    width: 100%;
    left: 0;
    text-align: center;
}


.parallax {
    position: absolute;
    background-attachment: fixed;
    background-position: top center;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}



.mb_banner {
	display: none!important;
}

/*首页css__start*/

/* tit_box1 */

.tit_box1{
    padding: 80px 0 40px;
    align-items: center;
}
.tit_box1 .tit{
    color:#333;
    flex:1;
}

.tit_box1 .tit h4{
    font-size:20px;
    color:var(--theme-color);
}
.tit_box1 .tit p{
    font-size:34px;
    font-weight: bold;
    text-transform: uppercase;
}
.tit_box1 .tit span{
    font-size:16px;
    color:#666;
    margin-top:10px;
    display: block;
}

.tit_box1 .menu{
    margin-top: 20px;
}
.tit_box1 .menu a{
    display: inline-block;
    font-size:18px;
    color:#666;
    margin-right: 40px;
}
.tit_box1 .menu a:hover{
    color:var(--theme-color);
    font-weight: bold;
}

.tit_box2 .tit h4{
    color:#fff;
}
.tit_box2 .tit p{
    color:#fff;
}
.tit_box2 .tit span{
    color:#ccc;
}


/* bg */

.bg1{
    background:url(../images/bg1.jpg) no-repeat center;
}
.bg2{
    background:#f4f4f4;
}
.bg3{
    background:url(../images/bg3.jpg) no-repeat center;
}


/* about */

.about{
    padding:80px 0;
}
.about_con{
    padding-right: 100px;
}
.about_con .tit_box1{
    padding:0;
}
.about_con .con{
    font-size:16px;
    margin:30px 0;
}
.about_con .con h4{
    font-size:24px;
    color:#333;
}
.about_con .con p{
    margin-top:30px;
    font-size:16px;
}
.about_con .icon_flex ul{
    margin-top: 50px;
}
.about_con .icon_flex ul li{
    flex:1;
}
.about_con .icon_flex ul li a{
    display: flex;
    flex-direction: column;
}
.about_con .icon_flex ul li a i{
    width: 66px;
    height: 66px;
    border:1px solid #e2e2e2;
    font-size:30px;
    color:#555;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition:all .4s;
}
.about_con .icon_flex ul li a h5{
    font-size:16px;
    color:#5b5b5b;
    margin-top: 10px;
}
.about_con .icon_flex ul li a:hover i{
    background: var(--theme-color);
    border-color: var(--theme-color);
    color:#fff;
}

.about_info_nums ul{
    margin: 50px 0 80px;
    justify-content: space-between;
    background: #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,.1);
    padding:40px 0;
}
.about_info_nums ul li{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex:1;
    border-right: 1px solid #d8d8d8;
}
.about_info_nums ul li:last-child{
    border-right: none;
}
.about_info_nums ul li .num{
    font-size:50px;
    color:var(--theme-color);
    font-weight: bold;
    line-height: 1.2;
}
.about_info_nums ul li .num span{
    font-size:16px;
    color:#666;
    vertical-align: top;
    font-weight: normal;
    display: inline-block;
    margin-left: 4px;
}
.about_info_nums ul li .num span.plus{
    font-size:20px;
}
.about_info_nums ul li .txt{
    font-size:16px;
    color:#5b5b5b;
}



/* product_con */

.product_con{
    
}
.product_con .item{
    padding: 0 10px;
}
.product_con .item a{
    display: block;
    position: relative;
    background: #fff;
    padding:40px 60px ;
}
.product_con .item .img{
    height: 202px;
    overflow: hidden;
}
.product_con .item .con{
    padding-top: 20px;
}
.product_con .item .con h4{
    font-size:18px;
    color:#2d2d2d;
    font-weight: bold;
    text-align: center;
}
.product_con .item .con p{
    font-size:16px;
    color:#5b5b5b;
    margin: 10px 0 20px;
}
.product_con .item .con span{
    font-size:14px;
    margin-top: 20px;
    color:#fff;
}
.product_con .item .button_wrap{
    text-align: center;
}
.product_con .item:hover .con{
    opacity: 1;
}
.product_con .item:hover .con h4{
    color:var(--theme-color);
}
.product_con .owl-buttons>div{
    width: 47px;
    height: 47px;
    background:#fff;
    color:#666;
    text-align: center;
    line-height: 47px;
    font-size:16px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition:all .3s;
}
.product_con .owl-buttons>div:hover{
    background:var(--theme-color);
    color:#fff;
}
.product_con .owl-buttons .owl-prev{
    left: -60px;
}
.product_con .owl-buttons .owl-next{
    right:-60px;
}
.btn_style .owl-pagination{
    text-align: center;
    margin-top: 40px;
}
.btn_style .owl-pagination>div{
    width: 8px;
    height: 8px;
    background: #e7e7e7;
    display: inline-block;
    margin:0 6px;
    text-indent: -9999px;
}
.btn_style .owl-pagination>div.active{
    background: var(--theme-color);
}


/* team_con */

.team_con{
    width: 60%;
    margin:auto;
}
.team_con .item{
    display: flex;
}
.team_con .item .con{
    flex:1;
    margin-left: 40px;
    color:#fff;
}
.team_con .item .con h4{
    font-size:28px;
    font-weight: normal;
}
.team_con .item .con span{
    font-size:18px;
    margin:15px 0 30px;
}
.team_con .item .con p{
    font-size:14px;
}


/* case_con */

.case_con .item{
    margin-right: 20px;
    position: relative;
}
.case_con .item .con{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color:#fff;
    transform: translateY(60px);
    transition:all .3s;
}
.case_con .item .con span{
    font-size:14px;
}
.case_con .item .con h4{
    font-size:18px;
    font-weight: bold;
    margin:5px 0 10px;
}
.case_con .item .con p{
    font-size:14px;
    color:#ddd;
}
.case_con .item:hover .con{
   transform: translateY(0);
}


/* news_con */


.news_left a{
    display: block;
    background: #ffffff;
    padding:36px;
}
.news_left a h5{
    font-size:16px;
    color:var(--theme-color);
}
.news_left a h4{
    font-size:20px;
    color:#000;
    font-weight: bold;
    margin:20px 0 10px;
    height: 44px;
}
.news_left a p{
    font-size: 16px;
    color:#666;
    height: 76px;
}
.news_left a span{
    font-size:14px;
    display: flex;
    align-items: center;
    color:#666;
    margin:30px 0 20px;
}
.news_left a span i{
    margin-left: 5px;
}
.news_left a:hover h4{
    color:var(--theme-color);
}
.news_left a:hover span{
    color:var(--theme-color);
}

.news_right{
    
}
.news_right li a{
    background: #fff;
    padding:36px 36px 20px;
    margin-bottom: 28px;
}
.news_right li:last-child a{
    margin-bottom: 0;
}
.news_right li a .time{
    color:var(--theme-color);
    padding-right: 40px;
    position: relative;
}
.news_right li a .time:after{
    content:'';
    display: block;
    width: 1px;
    height: 65px;
    position: absolute;
    right: 20px;
    top: 0;
    background: #eee;
}
.news_right li a .time h5{
    font-size: 54px;
    line-height: 0.8;
}
.news_right li a .time p{
    font-size:16px;
}
.news_right li a .con{
    flex:1;
    min-width: 0;
}

.news_right li a .con h4{
    font-size:20px;
    color:#333;
    font-weight: bold;
}
.news_right li a:hover .con h4{
    color:var(--theme-color);
}
.news_right li a .con p{
    font-size:14px;
    color:#666;
    margin:10px 0;
}
.news_right li a .con span{
    font-size:14px;
    display: flex;
    align-items: center;
}
.news_right li a .con span i{
    margin-left: 5px;
}

.contact_flex{
    padding:50px 0;
}
.contact_flex ul{
    justify-content: space-between;
}
.contact_flex ul li a{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.contact_flex ul li i{
    font-size:46px;
}
.contact_flex ul li h4{
    color:#2d2d2d;
}
.contact_flex ul li p{
    color:#5b5b5b;
    font-size:16px;
    margin-top: 10px;
}
.contact_flex ul li p span{
    color:var(--theme-color);
    margin-left: 5px;
    font-weight: bold;
}


/**/ 

.down_list li a{
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding:15px 0;
    cursor: pointer;
}
.down_list li h4{
    font-size:24px;
    color:#333;
    flex:1;
}
.down_list li span{
    background: var(--theme-color);
    color:#fff;
    font-size:16px;
    padding:10px 20px;
    border-radius: 5px;
}
.down_list li a:hover h4{
    color:var(--theme-color);
}
.down_list li a:hover span{
    opacity: .8;
}

/* fixed_rightbtn */

.fixed_rightbtn{
    position: fixed;
    z-index: 999;
    right:0;
    bottom:20%;
}
.fixed_rightbtn>ul>li{
    width:40px;
    height:40px;
    color:var(--color-fixedright);
    position: relative;
    transition:all .3s;
}
.fixed_rightbtn>ul>li>a{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 40px;
    line-height: 1.2;
    position: relative;
    color:#555;
    border:1px solid #ddd;
    border-bottom: none;
    background: #fff;
}
.fixed_rightbtn>ul>li:last-child a{
    border-bottom:1px solid #ddd;
}
.fixed_rightbtn>ul>li i{
    display: inline-block;
    font-size:18px;
    line-height: 1;
}
.fixed_rightbtn>ul>li>a:hover{
    background:var(--color-fixedright);
    border:1px solid var(--color-fixedright);
}
.fixed_rightbtn>ul>li>a:hover{
    color:#fff;
}
/*.fixed_rightbtn>ul>li p{*/
/*    position:absolute;*/
/*    height: 45px;*/
/*    right:40px;*/
/*    top: 0;*/
/*    background: #fff;*/
/*    border:1px solid #ddd;*/
/*    color:#333;*/
/*    font-size:18px;*/
/*    width:310px;*/
/*    text-align: center;*/
/*    line-height: 45px;*/
/*    transition:all .3s;*/
/*    box-shadow: 0 0 10px rgba(0,0,0,.1);*/
/*    border-radius: 3px;*/
/*    display: none;*/
/*}*/
/*.fixed_rightbtn>ul>li:hover p{*/
/*    display: block;*/
/*}*/
#layer_message{
    padding:20px 25px;
}
#code_img{
    height:34px;
}
#layer_message p{
    margin-top: 20px;
    font-size:14px;
}



.layer_search{
   
}
#fr_search:hover .layer_search{
    display: block;
}

.fixed_rightbtn>ul>li#fr_tel:hover,.fixed_rightbtn>ul>li#fr_tel{
    border:none;
}
.fixed_right_contact{
    width: 185px;
    background: #fff;
    position: absolute;
    bottom: -1px;
    left: -140px;
    box-shadow: 0 3px 10px rgba(0,0,0,.1);
}
.fixed_right_contact .close{
    position: absolute;
    right: 16px;
    top:23px;
    color: #fff;
    transition: all .3s;
    font-size:0;
}
.fixed_right_contact .close:hover{
    transform: rotate(180deg);
}
.fixed_right_contact .close i{
    font-size:14px;
}
.fixed_right_contact .tit{
    height: 57px;
    line-height: 57px;
    background:var(--color-fixedright);
    color:#fff;
    font-size:16px;
    padding: 0 20px;
}
.fixed_right_contact .tit i{
    font-size:18px;
    margin-right: 6px;
    vertical-align: middle;
}
.fixed_right_contact .con li{
    padding:15px 20px;
    border-bottom: 1px solid #f0f0f0;
}
.fixed_right_contact .con li h4{
    font-size:14px;
    color:#333;
    font-weight: normal;
    cursor: pointer;
}
.fixed_right_contact .con li h4 i{
    font-size:16px;
    color:#666;
    margin-right: 6px;
}
.fixed_right_contact .con li p{
    font-size:18px;
    line-height: 1;
    margin-top: 10px;
    color:var(--color-fixedright);
}
#fr_tel>a{
    right: -40px;
}
#fr_tel.fr_tel_on .fixed_right_contact{
    transition:all .3s;
    left: 40px;
}
.fixed_rightbtn>ul>#fr_tel:hover .fixed_right_contact{
    left: -147px;
}
#fr_tel.fr_tel_on>a{
    right: 0;
    transition:all .3s;
}
#layer_search{
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.layer_search{
    
    width: 80%;
    background: #fff;
    padding: 15px 10px 15px 15px;
}
#fr_search:hover .layer_search{
    display: block;
}
.layer_search form{
    display: flex;
}
.layer_search .key{
    height: 40px;
    line-height: 40px;
    width: 100%;
    padding: 0 20px;
    border:1px solid var(--color-fixedright);
    border-radius: 3px 0 0 3px;
    outline: none;
    font-size:14px;
    color:#164e99;
}
.layer_search .button{
    height: 40px;
    line-height: 40px;
    background: var(--color-fixedright);
    color:#fff;
    border:none;
    outline: none;
    padding: 0 10px;
    position: relative;
    right: 4px;
    font-size:14px;
    width: 80px;
    text-align: center;
    border-radius:0 3px 3px 0;
}
.layer_weixin{
    position: absolute;
    width: 150px;
    right: 40px;
    top: 0;
    border:1px solid #ddd;
    padding:3px;
    background: #fff;
    display: none;
    box-shadow: 0 0 10px rgba(0,0,0,.1);
}
#fr_code:hover .layer_weixin{
    display: block;
}
.layer_weixin span{
    text-align: center;
    display: block;
}




#layer_message{
    padding:20px 25px;
}
#code_img{
    height:34px;
}
#layer_message p{
    margin-top: 20px;
    font-size:14px;
}



.footer{
    background: #888;
    padding:50px 0 ;
}
.footer_nav li{
    flex:1;
}
.footer_nav li:first-child{
    display: none;
}
.footer_nav li a{
    display: block;
}
.footer_nav li a.a1{
    font-size:16px;
    color:#fff;
    margin-bottom: 6px;
}
.footer_nav li a.a2{
    font-size:14px;
    color:rgba(255,255,255,.5);
}

.footer_logo{
    display: flex;
    border-bottom: 1px solid rgba(255,255,255,.1);
    padding: 15px 0;
    margin-bottom: 30px;
}
.footer_logo .img{
    flex:1;
}
.footer_logo .img img{
    max-height: 30px;
}
.footer_logo .img span{
    font-size:16px;
    color:#dcdcdc;
    margin-left: 20px;
}
.footer_logo .icon a{
    display: inline-block;
    margin-left: 10px;
}
.footer_logo .icon a i{
    font-size:24px;
    color:#777;
}
.footer_con li{
    display: flex;
    margin:15px 0;
}
.footer_con li .icon i{
    font-size:30px;
    color:#fff;
    margin-right: 20px;
}
.footer_con li .con h4{
    font-size:14px;
    font-weight: normal;
    color:#fff;
    margin-bottom: 5px;
}
.footer_con li .con p{
    font-size:14px;
    color:#dcdcdc;
}
.footer_code p{
    font-size:14px;
    color:#fff;
    text-align: center;
    margin-top: 10px;
}
.footer_ft{
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 30px;
    font-size:14px;
    padding-top: 20px;
    color:#898989;
    display: flex;
    justify-content: space-between;
}


/* phone_fixed_menu */



.phone_fixed_menu {
	border-top: 1px solid #E5E9F2;
	width: 100%;
	height: 55px;
	background: #fff;
	position: fixed;
	z-index: 10000;
	bottom: 0;
	left: 0;
	display: none;
}

.phone_fixed_menu ul li {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	height: 55px;
	line-height: 1.2;
}

.phone_fixed_menu ul li a {
	display: block;
}

.phone_fixed_menu ul li i {
	font-size: 20px;
	color: #333;
}

.phone_fixed_menu ul li p {
	color: #333;
	font-size: 14px;
}



/*首页css__end*/


/*内页*/

.page_tit{
    padding-bottom: 40px;
    text-align: center;
}
.page_tit h4{
    line-height: 40px;
    font-size:34px;
    font-weight: bold;
    color:#222931;
}
.page_tit p{
    font-size:14px;
    color:#999;
    margin-top: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 40px;
}

.ibanner {
	position: relative;
	margin-top: 80px;
}
.ibanner .con {
	
}
.inner_tit_wrap{
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0,0,0,.1);
}
.inner_tit{
    
}
.inner_tit .wrap{
    color:#fff;
    display: flex;
    justify-content: space-between;
    height: 40px;
    align-items: center;
}
.inner_tit .wrap h4{
    font-size:18px;
}
.inner_tit .wrap p{
    font-size:14px;
}
.inner_tit .wrap p a{
    color:#fff;
}


/* 内页分类 */

.inner_menu{
    background:#fafafa;
    margin-right: 20px;
}
.inner_menu .tit{
    height:50px;
    font-size:18px;
    background:#f5f5f5;
    font-weight: bold;
    line-height:50px;
    padding: 0 20px;
    color:var(--theme-color);
}
.inner_menu>ul{
    padding: 20px 0;
}
.inner_menu>ul>li>a{
    display: block;
    height:46px;
    line-height:46px;
    padding:0 20px 0 32px;
    color:#333;
    font-size:14px;
    position: relative;
    font-weight: bold;
}
.inner_menu>ul>li>a:before{
    display: block;
    width: 5px;
    height: 5px;
    content:'';
    background: var(--theme-color);
    transform: rotate(45deg);
    position: absolute;
    left: 15px;
    top: 22px;
}
.inner_menu>ul>li>a:hover,.inner_menu>ul>li.cur>a{
    background: rgba(0,56,141,.06);
}


/* 内页二级分类显示 */

.inner_sublist {
	transition: all .3s;
	padding: 0 20px;
	background: rgba(255,255,255,.1);
}

.inner_sublist li a {
	color: #333;
	padding: 0 13px;
	font-size: 14px;
	display: block;
	line-height: 3;
}

.inner_sublist li a i {
	font-size: 12px;
	margin-right: 5px;
}
.inner_sublist li a:hover{
     background: rgba(0,56,141,.06);
}

.publeftcon{
    margin-right: 20px;
    background: #fafafa;
    padding: 14px;
}
.publeftcon .tit{
    font-size:18px;
    height:44px;
    line-height: 44px;
    padding:0 14px;
    color:#333;
    font-weight: bold;
    position: relative;
}
.publeftcon .tit:before{
    width:4px;
    height:16px;
    background:var(--theme-color);
    content:'';
    display: block;
    position: absolute;
    left:0;
    top: 14px;
}
.publeftcon ul{
    
}
.publeftcon ul li{
    border-bottom: 1px solid #eee;
    padding:15px 0;
}
.publeftcon ul li .img{
    max-width: 30%;
    border:3px solid #fff;
}
.publeftcon ul li .con{
    flex-direction: column;
    justify-content: space-between;
    flex:1;
    padding-left: 20px;
}
.publeftcon ul li .con h4{
    font-size:16px;
    font-weight: normal;
    color:#333;
}
.publeftcon ul li span{
    font-size:12px;
    color:#999;
}


.publeftcon .tags a{
    display: inline-block;
    background: #eaebed;
    padding: 3px 10px;
    font-size:12px;
    color:#001e57;
}
.publeftcon .tags a:hover{
    background: var(--theme-color);
    color:#fff;
}



.inner {
	padding: 50px 0 80px;
}

.page_index {
	min-height: 300px;
	background: #fff;
	font-size:16px;
	color:#333;
}
.page_index img{
    display: inline-block;
}
.page_index>p{
    margin-bottom: 10px;
    text-indent: 2em;
}
.page_index .tit p{
    text-align: center;
    margin: 15px 0;
    background: #f7f7f7;
    height: 36px;
    line-height: 36px;
    overflow: hidden;
}
.page_index .tit p span{
    margin:0 6px;
    font-size:14px;
}
.page_index .tit p span i{
    margin-right: 5px;
}
.page_index .desc{
    font-size:14px;
    color:#999;
}
.page_index .con p {
	/*text-indent: 2em;*/
	font-size: 16px;
	line-height: 1.9;
	margin-bottom: 15px;
}
.page_index .con img {
	margin:0 auto 15px!important;
}

.page_index .tit h1 {
	color: #333;
	font-size: 26px;
	font-weight: bold;
	text-align: center;
}


.page_index .con {
	padding: 20px 0;
}


/* 公司介绍 */

.page_about_index .tit{
    color:#222931;
    font-size:34px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
}
.page_about_index .con{
    font-size:16px;
    line-height: 1.9;
    text-align: center;
    padding: 0 0 20px;
}
.page_about_index .con p{
    margin-bottom: 20px;
}
.page_about_index ul li{
    text-align: center;
}
.page_about_index ul li i{
    width: 100px;
    height: 100px;
    display: block;
    margin:0 auto 20px;
    background:var(--theme-color);
    border-radius: 50%;
    font-size:36px;
    color:#fff;
    text-align: center;
    line-height: 100px;
}
.page_about_index ul li h4{
    color:#212f38;
    font-size:22px;
    font-weight: bold;
}

.page_service_index .con{
    max-width: 900px;
    margin:0 auto;
    font-size:16px;
    text-align: center;
    color:#fff;
}
.page_honor_index li .img_scale{
    display: block;
    padding: 20px;
    border:1px solid #eee;
}

.page_honor_index li .con h4{
    text-align: center;
    line-height:60px;
    height: 60px;
    overflow: hidden;
    font-size:20px;
    color:#333;
    font-weight: bold;
}


/* 单页内容 */


.xg_news {
	margin: 40px 0 0;
}

.xg_news h3 {
	font-size: 18px;
	border-bottom: 1px solid #eee;
	line-height: 2;
	color: #2f2f2f;
	font-weight: bold;
}

.xg_news ul {
	margin-bottom: 20px;
}

.xg_news ul li {
	padding: 15px 0 0;
}

.xg_news ul li .img {
	width: 80px;
}

.xg_news ul li .con {
	flex: 1;
	margin-left: 20px;
}

.xg_news ul li .con a {
	font-size: 14px;
	display: block;
	line-height: 1.2;
	color: #555;
	margin-bottom: 3px;
}

.xg_news ul li .con span {
	color: #999;
}

.xg_news .tags {
	padding: 10px 0 20px;
}

.xg_news .tags a {
	display: inline-block;
	padding: 3px 10px;
	background: var(--theme-color);
	margin: 0 5px 5px 0;
	color: #fff;
	font-size: 14px;
}

.xg_news dl {
	margin: 15px 0 0;
}

.xg_news dl dd{
	font-size: 14px;
	text-align: center;
	font-weight: bold;
	color: #151515;
	line-height: 2;
	height: 30px;
	line-height: 30px;
	overflow: hidden;
}



/* 产品列表 */



.page_picList li {
	margin-bottom:30px;
}
.page_picList li a {
	display: block;
	background: #fff;
	border:1px solid #ececec;
}

.page_picList li .con{
    padding:20px;
}
.page_picList li .con h4{
	transition: color .4s;
	font-size: 18px;
	color: #333;
	font-weight: normal;
	text-align: center;
}

.page_picList li .con p{
	margin: 6px 0 0;
	font-size: 14px;
	color:#999;
}

.page_picList li .img {
	overflow: hidden;
	height: 250px;
	position: relative;
}

.page_picList li img {
	transition: all 0.6s;
	margin: 0;
	max-height: 100%;
    max-width: 100%;
    position: absolute;
    top: 0px;
    bottom: 0px;
    margin: auto;
    left: 0px;
    right: 0px;
}

.page_picList li:hover img {
	transform: scale(1.1);
}

.page_picList li span {
	display: inline-block;
	font-size: 14px;
	color: rgba(17,17,17,0.5);
	margin-right: 18px;
	position: relative;
	padding: 6px 0;
}

.page_picList li:hover a{
    border-color:var(--theme-color);
}
.page_picList li:hover .con h4 {
	color:var(--theme-color);
}

/* page_serviceList */

.page_serviceList_tit{
    padding: 80px 0 55px;
    text-align: center;
}
.page_serviceList_tit h4{
    color:#b81c25;
    font-size:48px;
    letter-spacing: 2px;
}
.page_serviceList_tit h4 i{
    font-size:80px;
    font-style: inherit;
}
.page_serviceList_tit h4 span{
    font-size:66px;
}
.page_serviceList_tit p{
    font-size:24px;
    color:#333;
    margin:10px 0 0;
}
.page_serviceList li{
    transition:all .3s;
    cursor: help;
}
.page_serviceList li:nth-child(3) .col-md-6:first-child,.page_serviceList li:nth-child(4) .col-md-6:first-child,.page_serviceList li:nth-child(7) .col-md-6:first-child,.page_serviceList li:nth-child(8) .col-md-6:first-child{
    float: right;
}
.page_serviceList .col-md-6{
    padding:0;
}
.page_serviceList .con{
    padding: 40px 40px 0;
}
.page_serviceList .con h4{
    font-size:16px;
    color:#333;
    font-weight: bold;
}
.page_serviceList .con h4:after{
    display: block;
    content:'';
    width: 22px;
    height: 1px;
    background: #000;
    margin:10px 0 15px;
}
.page_serviceList .con p{
    font-size:14px;
    color:#666;
    line-height: 1.9;
    max-height: 78px;
    overflow: hidden;
}
.page_serviceList li:hover{
    background: var(--theme-color);
}
.page_serviceList li:hover h4{
    color:#fff;
}
.page_serviceList li:hover h4:after{
    background: #fff;
}
.page_serviceList li:hover p{
    color:#fff;
}


/* 单页联系我们 */


.page_contactindex{
    padding-top: 20px;
}
.page_contactindex h5{
    font-size: 24px;
    font-weight: bold;
    padding: 20px 0;
    color: #50525f;
}
.page_contactindex p{
    margin-bottom: 10px;
    font-size:14px;
    color:#777;
    
}
.page_contactindex p i{
    font-size: 16px;
    margin-right: 6px;
}
.page_contactindex .code{
    max-width: 170px;
}
.page_contactindex .img{
    margin-right: 20px;
}
.page_contactindex .img img{
    border-radius: 5px;
}


/*新闻列表*/



.page_newsList {
}

.page_newsList li{
	border-bottom: 1px solid rgba(227,227,227,.61);
	transition: all .3s ease-out 0s;
	background: #fff;
	padding: 20px 0;
}

.page_newsList li .img img {
	width:300px;
	margin-bottom: 0;
}

.page_newsList li .time {
	width: 140px;
	margin-right: 60px;
}

.page_newsList li .time p {
	color: #c5c5c5;
	font-size: 30px;
}

.page_newsList li .time span {
	display: block;
	border: 1px solid #e6e6e6;
	width: 29px;
	height: 29px;
	line-height: 29px;
	text-align: center;
	font-size: 14px;
	margin-top: 20px;
	border-radius: 2px;
	color: #aaa;
	transition: all .3s ease-out 0s;
}

.page_newsList li .con {
	transition: all .3s ease-out 0s;
	padding: 0;
	flex: 1;
	padding: 10px 0 0 20px;
    flex-direction: column;
    justify-content: space-between;
}

.page_newsList li .con h4 {
	height: 20px;
	line-height: 20px;
	margin-bottom: 10px;
	color: #333;
	transition: all .3s ease-out 0s;
	font-size: 18px;
	font-weight: normal;
	overflow: hidden;
}

.page_newsList li .con p {
	color: #888;
	font-size: 13px;
	line-height: 24px;
	max-height: 75px;
	margin: 0;
	text-indent: 0;
	overflow: hidden;
}

.page_newsList li .con span {
    display: inline-block;
    color: #333;
    margin-top: 8px;
}

.page_newsList li:hover .con h4{
    color:var(--theme-color);
}


/* 新闻详情 */


/* 产品详情页 */



.page_picshow {
	margin-bottom: 50px;
	background: #fff;
}

.page_picdetails {
}

.page_picdetails .img {
	max-height: 350px;
	overflow: hidden;
}

.page_picdetails .img img {
	width: 100%;
}

.page_picdetails .info {
    padding-left: 30px;
}

.page_picdetails .info h1 {
	font-size: 24px;
	margin: 10px 0 15px;
	color: #000;
	line-height: 1.3;
	border-bottom: 1px solid #eee;
	padding: 0 0 14px;
	font-weight: bold;
}

.page_picdetails .info p {
	font-size: 14px;
	margin: 0 0 40px;
}

.page_picdetails .info>span {
	background:#0068e8;
	padding: 3px 15px;
	margin-top: 14px;
	display: inline-block;
	color: #fff;
	font-size: 16px;
}

.page_picdetails .info span i {
	font-size: 20px;
	margin-right: 6px;
}

.page_picdetails .info span em {
	font-style: normal;
	font-size: 22px;
	font-family: Arial, Helvetica, sans-serif;
}

.page_picdetails .con {
	margin: 0;
	padding: 20px 0 0;
	font-size:16px;
	line-height: 1.8;
	color:#112038;
}
.page_picdetails .con table{
    width: 100%;
}
.page_picdetails .con td{
    border: 1px solid #ddd;
}
.page_picdetails .con p{
    margin-top: 10px;
}
.page_picdetails .con table p{
    text-indent: 0!important;
}
.page_picdetails .con .tags {
	font-size: 14px;
	margin-bottom: 15px;
}

.page_picdetails .con .tags a {
	color: #eee;
	background: #001e57;
	display: inline-block;
	padding: 2px 10px;
	margin-right: 3px;
	font-size:12px;
}
.page_picdetails .con .tags a:hover{
    background: var(--theme-color);
    color:#fff;
}

.page_picdetails .con .ptit {
	font-size: 16px;
	background: #f9f6f6;
	padding: 6px 13px;
	position: relative;
	margin-bottom: 30px;
	font-weight: bold;
}

.page_picdetails .con .ptit::before {
	content: '';
	display: block;
	width: 3px;
	height: 18px;
	background: #d7a365;
	position: absolute;
	left: 0;
	top: 10px;
}



/* 案例列表 */

.page_caseList li{
    margin-bottom:20px;
}
.page_caseList li a{
    display: block;
    background: #fff;
    overflow: hidden;
}
.page_caseList .img{
    position: relative;

}
.page_caseList .img img{
    width: 100%;
}
.page_caseList .img i{
    display: block;
    width: 100%;
    height:100%;
    left: 0;
    position: absolute;
    top:-100%;
    background:rgba(0, 0, 0,.3);
    font-size: 36px;
    color:#fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition:all .3s;
}
.page_caseList li:hover .img i{
    top: 0;
}
.page_caseList li .con{
    padding: 20px 15px 0 0;
}
.page_caseList li .con h4{
    font-size:18px;
    color:#333;
    font-weight: normal;
    height: 22px;
    line-height: 22px;
    overflow: hidden;
    text-align: center;
}
.page_caseList li .con p{
    font-size:14px;
    margin:10px 0 10px;
    color:#777;
    max-height: 73px;
    overflow: hidden;
    text-align: center;
}
.page_caseList li .con span{
    display: block;
    background: #1a81fd;
    color:#fff;
    display: inline-block;
    padding: 5px 10px;
    font-size:12px;
    transition:all .3s;
}

.page_hotpic .tit {
	font-size: 18px;
	text-align: center;
	position: relative;
	margin-bottom: 7px;
}

.page_hotpic .tit::before,.page_hotpic .tit::after {
	width: 50px;
	height: 1px;
	background: #eee;
	content: '';
	display: block;
	position: absolute;
	top: 15px;
	left: 0;
}

.page_hotpic .tit::after {
	left: auto;
	right: 0;
}

.page_hotpic li {
	margin-bottom: 10px;
}

.page_hotpic li .img {
	max-height: 200px;
	overflow: hidden;
}

.page_hotpic li h4 {
	font-weight: normal;
	text-align: center;
	font-size: 14px;
	padding: 10px 0 5px;
}



/*翻页*/

.return_page {
    border: 2px solid var(--theme-color);
	padding: 15px 20px;
	line-height: 30px;
	color: var(--theme-color);
	position: relative;
}

.return_page p {
	margin-bottom: 0;
	text-indent: 0;
	line-height: 2;
}
.return_page p a {
	color: var(--theme-color);
	font-weight: bold;
}

.return_page .go_history a {
	background: var(--theme-color);
	width: 70px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	color: #fff;
	position: absolute;
	right: 0;
	top: 50%;
	display: block;
	transform: translateY(-50%);
	font-size:13px;
}



/* 页码 */



.pagination {
	text-align: center;
	display: block;
}

.pagination li {
	display: inline-block;
	margin: 0 1px;
}

.pagination li span,.pagination li a {
	display: block;
	padding: 0 10px;
	line-height: 28px;
	background: #eee;
	color:#333;
}

.pagination li.active a {
	background: var(--theme-color);
	color: #fff;
	border-color:var(--theme-color);
}


/*在线留言*/

#my_form {
	padding: 30px 0 0;
}

#my_form table {
	width: 100%;
}

#my_form tr {
	display: inline-flex;
	width: 48%;
	margin-bottom: 15px;
}

#my_form tr:nth-child(2n) {
	margin-left: 4%;
}

#my_form tr.content {
	width: 100%!important;
	display: flex;
	margin-left: 0;
}

#my_form tr td:first-child {
	line-height: 34px;
	color: #333;
}

#my_form tr td:last-child {
	flex: 1;
}

#my_form tr input,#my_form tr textarea {
	height: 34px;
	width: 100%!important;
	border: 1px solid #ccc;
	padding: 0 10px;
	color: #333;
	outline: none;
	border-radius: 4px;
	font-size: 14px;
	font-family: 微软雅黑;
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
	transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

#my_form tr input:focus,#my_form tr textarea:focus {
	border-color: #66afe9;
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
}

#my_form tr ::placeholder {
	color: #999;
	font-family: 微软雅黑;
	font-size: 14px;
}

#my_form tr textarea {
	height: 100px;
	padding-top: 6px;
}

#my_form .btn {
	margin-left: 30px;
}

#my_form .btn input {
	display: inline-block;
	padding: 6px 12px;
	margin-bottom: 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.42857143;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-image: none;
	border: 1px solid transparent;
	border-top-color: transparent;
	border-right-color: transparent;
	border-bottom-color: transparent;
	border-left-color: transparent;
	border-radius: 4px;
}

#my_form .btn input:first-child {
	color: #fff;
	background-color: #337ab7;
	border-color: #2e6da4;
}

#my_form .btn input:first-child:focus {
	color: #fff;
	background-color: #286090;
	border-color: #122b40;
}

.bdsharebuttonbox span {
	line-height: 30px;
}